home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Interactive CD Sampler / Microsoft Interactive CD Sampler.iso / DEMOS / C_Automp / AUTOTP / TRIPPLAN.DIR / Scripts_2_updateBar.ls < prev    next >
Encoding:
Text File  |  1996-07-25  |  267 b   |  16 lines

  1. property runMe, progNum
  2.  
  3. on new me, eFrame
  4.   set runMe to 1
  5.   return me
  6. end
  7.  
  8. on updateBar me
  9.   if runMe then
  10.     set percent to float(progNum) / float(100.0)
  11.     set offset to 349 * percent
  12.     set the locH of sprite 44 to 145 + offset
  13.     updateStage()
  14.   end if
  15. end
  16.